home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Programming / Python-1.4 / Python1.4_Source / Modules / urlopmodule.c < prev    next >
C/C++ Source or Header  |  1996-08-26  |  4KB  |  178 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its 
  8. documentation for any purpose and without fee is hereby granted, 
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in 
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI not be used in advertising or publicity pertaining to
  13. distribution of the software without specific, written prior permission.
  14.  
  15. STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
  16. THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  17. FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
  18. FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  19. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  20. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  21. OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  22.  
  23. ******************************************************************/
  24.  
  25. /* urlop module - patterned after stropmodule.c */
  26. /* Skip Montanaro - March 16, '96 */
  27. /* Copyright 1996, Automatrix, Inc */
  28. /* 6/14/96 - bugfix: character strings should be unsigned char */
  29.  
  30. #include "allobjects.h"
  31. #include "modsupport.h"
  32.  
  33. #include <ctype.h>
  34. /* XXX This file assumes that the <ctype.h> is*() functions
  35.    XXX are defined for all 8-bit characters! */
  36.  
  37. #include <errno.h>
  38.  
  39.  
  40. static object *urlop_quote Py_PROTO((object *, object*));
  41. static object *urlop_unquote Py_PROTO((object *, object *));
  42.  
  43.  
  44. static char always_safe[256];
  45. static char *hexd = "0123456789abcdef";
  46.  
  47. static object *
  48. urlop_quote(self, args)
  49.     object *self; /* Not used */
  50.     object *args;
  51. {
  52.     unsigned char *s, *s_new, *safechars;
  53.     unsigned char safe[256];
  54.     int i, j, n, safen;
  55.     object *old, *new;
  56.     int changed = 0;
  57.  
  58.     safechars = "/";
  59.     safen = 1;
  60.     if (!PyArg_ParseTuple(args, "S|s#", &old, &safechars, &safen))
  61.     return NULL;
  62.  
  63.     n = PyString_Size(old);
  64.     if (!n) {
  65.     INCREF(old);
  66.     return old;
  67.     }
  68.     s = PyString_AsString(old);
  69. //    s_new = alloca(n * 3 + 1);
  70.     s_new = malloc(n * 3 + 1);
  71.     s_new[0] = 0;
  72.  
  73.     /* set up mask */
  74.     for (i = 0; i < 256; i++) safe[i] = always_safe[i];
  75.     for (i = 0; i < safen; i++) safe[safechars[i]] = 1;
  76.  
  77.     /* test chars against masks */
  78.     for (i = 0, j = 0; i < n; i++) {
  79.     if (safe[s[i]]) {
  80.         s_new[j] = s[i];
  81.         j++;
  82.     }
  83.     else {
  84.         s_new[j] = '%'; j++;
  85.         s_new[j] = hexd[s[i]/16]; j++;
  86.         s_new[j] = hexd[s[i]%16]; j++;
  87.         changed = 1;
  88.     }
  89.     }
  90.     if (!changed) {
  91.     INCREF(old);
  92.     free(s_new);
  93.     return old;
  94.     }
  95.     new=newsizedstringobject(s_new, j);
  96.     free(s_new);
  97.     return new;
  98. }
  99.  
  100.  
  101. static object *
  102. urlop_unquote(self, args)
  103.     object *self; /* Not used */
  104.     object *args;
  105. {
  106.     unsigned char *s, *s_new;
  107. //    unsigned char safe[256];
  108.     int i, j, n, safen;
  109.     object *old, *new;
  110.     int changed = 0;
  111.     unsigned char xdigit[3];
  112.  
  113.     xdigit[2] = 0;
  114.     if (!PyArg_ParseTuple(args, "S", &old)) return NULL;
  115.  
  116.     n = PyString_Size(old);
  117.     if (!n) {
  118.     INCREF(old);
  119.     return old;
  120.     }
  121.     s = PyString_AsString(old);
  122. //    s_new = alloca(n + 1);
  123.     s_new = malloc(n + 1);
  124.     s_new[0] = 0;
  125.  
  126.     for (i = 0, j = 0; i < n; i++) {
  127.     if (s[i] == '%' && isxdigit(s[i+1]) && isxdigit(s[i+2])) {
  128.         xdigit[0] = s[i+1];
  129.         xdigit[1] = s[i+2];
  130.         s_new[j] = strtol(xdigit, 0, 16);
  131.         j++;
  132.         s_new[j] = 0;
  133.         i += 2;
  134.         changed = 1;
  135.     }
  136.     else {
  137.         s_new[j++] = s[i];
  138.     }
  139.     }
  140.     if (!changed) {
  141.     INCREF(old);
  142.     free(s_new);
  143.     return old;
  144.     }
  145.     new=newsizedstringobject(s_new, j);
  146.     free(s_new);
  147.     return new;
  148. }
  149.  
  150.  
  151. /* List of functions defined in the module */
  152.  
  153. static struct methodlist urlop_methods[] = {
  154.     {"quote",    urlop_quote, 1},
  155.     {"unquote",    urlop_unquote, 1},
  156.     {NULL,        NULL}    /* sentinel */
  157. };
  158.  
  159.  
  160. void
  161. initurlop Py_PROTO((void))
  162. {
  163.     int i;
  164.     char c;
  165.  
  166.     initmodule("urlop", urlop_methods);
  167.     if (err_occurred())
  168.     fatal("can't initialize module urlop");
  169.  
  170.     for (i = 0; i < 256; i++) always_safe[i] = 0;
  171.     for (c = 'A'; c <= 'Z'; c++) always_safe[c] = 1;
  172.     for (c = 'a'; c <= 'z'; c++) always_safe[c] = 1;
  173.     for (c = '0'; c <= '9'; c++) always_safe[c] = 1;
  174.     always_safe['_'] = always_safe[','] = always_safe['.'] =
  175.     always_safe['-'] = 1;
  176.  
  177. }
  178.